home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_01 / allison / atox3.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-02  |  171 b   |  12 lines

  1. LISTING 3 - Converts a hex-string to a number via sscanf
  2.  
  3. #include <stdio.h>
  4.  
  5. long atox(char *s)
  6. {
  7.      long n = 0L;
  8.      sscanf(s,"%x",&n);
  9.      return n;
  10. }
  11.  
  12.